home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Utils.h
-
- Contains: General utilities header
-
-
-
- Copyright: © 1998 by Apple Computer, Inc., all rights reserved.
-
- Change History:
-
- 22 Mar 98 gp Created
-
- To Do:
- */
-
- #ifndef __UTILS__
- #define __UTILS__
-
- #ifndef __LISTS__
- #include <Lists.h>
- #endif
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
- extern Boolean PStrEqualCaseInsensitive( Str255 string1, Str255 string2 );
- extern void AppendPStr(StringPtr mainStr, StringPtr addStr);
- extern void GetNameFromCell (StringPtr theString, Cell cell, ListHandle hList);
-
- #endif
-
-